#!/bin/bash
# chkconfig: 12345 07 91
# description: This calls the HMC restore scripts (prior to network set up)
#


# Source function library.
. /etc/init.d/functions

case "$1" in
 start)
        /opt/hsc/bin/restore 2>/dev/null
        /opt/hsc/bin/restoreUpgradeFiles 2>/dev/null
	;;
 stop)
 	;;
 *)
 	echo "Usage: hmcRestore {start|stop}"
	exit 1
	;;
esac
exit 0

